home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib9 / v_11_11 / saks / immdes.hpp < prev    next >
Encoding:
Text File  |  1995-11-01  |  195 b   |  13 lines

  1. const String &passthru(const String &x)
  2.     {
  3.     return x;
  4.     }
  5.  
  6. void foo()
  7.     {
  8.     String x("foo");
  9.     String y("bar");
  10.     size_t len = passthru(s + t).len();
  11.     // ...
  12.     }
  13.